﻿<script type="text/javascript">
  function zmieńStyl(nazwa, cecha, wartość)
  {
    var el = document.getElementById(nazwa);
    if(el && el.style){
      el.style[cecha] = wartość;
    }
  }
</script>